home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1998 March / Software of the Month Club 1998 March.iso / mac / Latest & Greatest / PowerReplace 6.3 / Plugin / PowerReplace User’s Guide / PowerReplace User’s Guide.rsrc / TEXT_136_8 - Questions & Answer.txt < prev    next >
Text File  |  1997-12-21  |  3KB  |  71 lines

  1.  
  2.  
  3.  
  4.  
  5. General
  6. Γùè How to create SelfReplace application?
  7. - Use the menu ΓÇ£File/Save AsΓǪΓÇ¥ to save filter file as SelfReplace application.
  8. (Old application ΓÇ£SelfReplace MakerΓÇ¥ is obsolete.)
  9.  
  10. Γùè How to increase conversion speed?
  11. - Use the native application. If you have only the PowerReplace 68K, please create and use SelfReplace, because all SelfReplace applications are always Fat.
  12. - Optimize your filter file. (See Chapter 7: Technical Note)
  13.  
  14. Γùè There is a special character in my text file, how to get its ASCII?
  15. - PowerReplace can help you. Convert your text file using the filter file ΓÇ£ShowASCIIΓÇ¥. You will see its ASCII in the output file.
  16.  
  17. Γùè My Mac has enough RAM, but why PowerReplace can not work and says "no enough memory to run"?
  18. - The big clipboard may cause memory problem. Try to empty the clipboard.
  19.  
  20. Γùè I like ClarisWorks (or Word) and I use it to write my text. But usully this application saves my text as its document, who is not a text file (of type 'TEXT'). Can PowerReplace help me to find/replace?
  21. - No direct solution. Two indirect solutions:
  22. 1. Save your text as text file using the menu ΓÇ£File/Save AsΓǪΓÇ¥ under the application ClarisWorks (or Word).
  23. 2. Select your text and use the ΓÇ£Convert ClipboardΓÇ¥ feature. 
  24.  
  25. About filter file
  26.  
  27. Γùè I would like to replace ├⌐ by é for converting my text into HTML format. How to do it?
  28. - It's enough to add the following line in your filter-file:
  29.     "├⌐"           "é"
  30.  
  31. Γùè Now I would like to do exactly the opposite, it means replace é by ├⌐ how about it ?
  32. - This time the following line:
  33.     "é"    "├⌐" 
  34.  
  35. Γùè How to replace %22 by " (quotation marks)?
  36. - You must use the  special character \" adding the following line:
  37.      "%22"        "\""
  38.  
  39. Γùè OK. But sometimes my text editor cut a word into two for separating two lines as  %2-2 and %-22, how to correct it?
  40. - Add the following lines :
  41.     "%2\n2" "\"" 
  42.     "%2\r2" "\"" 
  43.     "%\n22" "\"" 
  44.     "%\r22" "\"" 
  45.  
  46. Γùè How to remove all words beginning with def?
  47. - Use pattern. 
  48.     'def[a-zA-Z├á├ó├ñ├⌐├¿├¬├½├º├╣├╝├┤├╢]*'  ""
  49.  
  50. Γùè How to remove a line beginning with % (TeX comment)?
  51. -
  52.     "%*\r"   "\r"
  53.     "%*\n"   "\n"
  54.  
  55. Γùè How to remove all mathmatical formulas in a TeX file?
  56. -
  57.     "$$*$$"    ""
  58.     "$*$"      ""
  59.  
  60. Γùè I would like to replace ef by EF, except ef in def?
  61. - There is an astute method:
  62.     "def"      "my_save"
  63.     "ef"       "EF"
  64.     "my_save"  "def" 
  65.  
  66. Γùè How to replace \alpha by ├ª (in a TeX file for example)?
  67. - (DonΓÇÖt forget that there is perhaps \alphabet in the text file). Use pattern and meta.
  68.     #meta        "/"
  69.     '\alpha[^a-zA-Z]'  "├ª"
  70.  
  71.